home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / windows5 / winwt.zip / READ.ME next >
Text File  |  1992-10-22  |  894b  |  29 lines

  1.  WINWAIT
  2.  by Andrew Garnett 1992.
  3.  
  4.     Use WINWAIT as a convenient way to optionally load Windows.
  5.  
  6. Although other programs like this exist, this one has the following features:
  7.  
  8. 1. It provides a simple user interface.
  9. 2. It returns two errorlevels for a batch file to act on (0 for windows
  10.    and 1 for the dos prompt).
  11. 3. It defaults to loading Windows after a user defined period (seconds).
  12. 4. Hitting Enter proceeds without a wait.
  13. 5. Hitting Escape drops you to DOS.
  14. 6. The interface mimicks very closely the OS loader supplied with the July
  15.    version of the Windows NT Pre release.
  16.  
  17.  Please feel free to report any problems or feedback to me on   
  18.  CompuServe 100012,32. Thank you.
  19.  
  20.  To install, add the following lines at the end of your autoexec.bat and
  21.  place WINWAIT.EXE somewhere in your path.
  22.  
  23. @ECHO OFF
  24.  
  25. Winwait 20 
  26. if errorlevel 1 goto exit
  27. Win
  28. :exit
  29.